home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -in_the_mag- / program_perfection / defs.h next >
C/C++ Source or Header  |  1999-12-08  |  687b  |  52 lines

  1. /*
  2.  * defs.h
  3.  *
  4.  * Some global definitions
  5.  *
  6.  * $Id :$
  7.  * $Log:$
  8.  *
  9.  */
  10.  
  11.  
  12. #ifndef  DEFS_H
  13. #define  DEFS_H
  14.  
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18.  
  19. /* include revision info */
  20.  
  21. /*#include "Example_rev.h"*/
  22.  
  23.  
  24. /* compiler specific stuff */
  25. /* deleted - I only had time to try this on VBCC */
  26.  
  27. #ifndef __VBCC__
  28. #error  "This project needs to be compiled with VBCC"
  29. #endif
  30.  
  31. #define WBMSG   WBenchMsg
  32.  
  33. extern APTR WBMSG;
  34.  
  35. /* Which Kickstart revision does this project need? */
  36.  
  37. #ifndef OS_REVISION_REQUIRED
  38. #define OS_REVISION_REQUIRED        39L
  39. #endif
  40.  
  41.  
  42. /* Cut down on the load by not including old intuition defines */
  43.  
  44. #define INTUI_V36_NAMES_ONLY
  45.  
  46.  
  47.  
  48.  
  49.  
  50. #endif /* DEFS_H */
  51.  
  52.